home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / VCLZip / kpdemosc.exe / Config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-11-10  |  1.8 KB  |  60 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef ConfigH
  3. #define ConfigH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Buttons.hpp>
  10. #include <ComCtrls.hpp>
  11. #include <Dialogs.hpp>
  12. #include <Tabnotbk.hpp>
  13. //---------------------------------------------------------------------------
  14. class TConfigDlg : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TTabbedNotebook *Options;
  18.     TLabel *Label5;
  19.     TLabel *Label6;
  20.     TLabel *Label8;
  21.     TEdit *DefaultViewer;
  22.     TCheckBox *ForceDefaultViewer;
  23.     TCheckBox *LowerCaseFiles;
  24.     TBitBtn *DirBtn;
  25.     TCheckBox *ProcessMessagesChk;
  26.     TBitBtn *sfx16dirbtn;
  27.     TLabel *Label1;
  28.     TLabel *Label2;
  29.     TCheckBox *OnStartUnZipInfoChk;
  30.     TCheckBox *OnStartUnZipChk;
  31.     TCheckBox *OnBadCRCChk;
  32.     TCheckBox *OnBadPasswordChk;
  33.     TCheckBox *OnSkippingFileChk;
  34.     TCheckBox *OnStartZipInfoChk;
  35.     TCheckBox *OnStartZipChk;
  36.     TCheckBox *OnEndZipChk;
  37.     TGroupBox *GroupBox1;
  38.     TLabel *Label3;
  39.     TLabel *Label4;
  40.     TButton *Button1;
  41.     TButton *Button2;
  42.     TButton *OKBtn;
  43.     TButton *CancelBtn;
  44.     TOpenDialog *GetViewerDlg;
  45.     TEdit *sfx16;
  46.     TEdit *sfx32;
  47.     TBitBtn *sfx32dirbtn;
  48.     void __fastcall DirBtnClick(TObject *Sender);
  49.     void __fastcall Button1Click(TObject *Sender);
  50.     void __fastcall Button2Click(TObject *Sender);
  51.     
  52. private:    // User declarations
  53. public:        // User declarations
  54.     __fastcall TConfigDlg(TComponent* Owner);
  55. };
  56. //---------------------------------------------------------------------------
  57. extern PACKAGE TConfigDlg *ConfigDlg;
  58. //---------------------------------------------------------------------------
  59. #endif
  60.